home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / cgi-bin / server-status < prev    next >
Text File  |  1997-04-15  |  4KB  |  113 lines

  1. #!/bin/perl
  2.  
  3. # ====================================================================
  4. # Copyright (c) 1995 The Apache Group.  All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions
  8. # are met:
  9. #
  10. # 1. Redistributions of source code must retain the above copyright
  11. #    notice, this list of conditions and the following disclaimer.
  12. #
  13. # 2. Redistributions in binary form must reproduce the above copyright
  14. #    notice, this list of conditions and the following disclaimer in
  15. #    the documentation and/or other materials provided with the
  16. #    distribution.
  17. #
  18. # 3. All advertising materials mentioning features or use of this
  19. #    software must display the following acknowledgment:
  20. #    "This product includes software developed by the Apache Group
  21. #    for use in the Apache HTTP server project (http://www.apache.org/)."
  22. #
  23. # 4. The names "Apache Server" and "Apache Group" must not be used to
  24. #    endorse or promote products derived from this software without
  25. #    prior written permission.
  26. #
  27. # 5. Redistributions of any form whatsoever must retain the following
  28. #    acknowledgment:
  29. #    "This product includes software developed by the Apache Group
  30. #    for use in the Apache HTTP server project (http://www.apache.org/)."
  31. #
  32. # THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY
  33. # EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  34. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  35. # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE APACHE GROUP OR
  36. # ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  37. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  38. # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  39. # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  40. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  41. # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  42. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  43. # OF THE POSSIBILITY OF SUCH DAMAGE.
  44. # ====================================================================
  45. #
  46. # This software consists of voluntary contributions made by many
  47. # individuals on behalf of the Apache Group and was originally based
  48. # on public domain software written at the National Center for
  49. # Supercomputing Applications, University of Illinois, Urbana-Champaign.
  50. # For more information on the Apache Group and the Apache HTTP server
  51. # project, please see <http://www.apache.org/>.
  52.  
  53.  
  54. # Log Server Status
  55. # Mark J Cox, UK Web Ltd 1996, mark@ukweb.com
  56. #
  57. # This script is designed to be run at a frequent interval by something
  58. # like cron.  It connects to the server and downloads the status
  59. # information.    It reformats the information to a single line and logs
  60. # it to a file.  Make sure the directory $wherelog is writable by the
  61. # user who runs this script.
  62. #
  63. #require 'sys/socket.ph';
  64. require  'socket.pm';
  65.  
  66.  
  67. $wherelog = "/apache/logs/graph/";  # Logs will be like "/var/log/graph/960312"
  68. $server = "localhost";          # Name of server, could be "www.foo.com"
  69. $port = "80";                   # Port on server
  70. $request = "/status/?auto";     # Request to send
  71.  
  72. sub tcp_connect
  73. {
  74.     local($host,$port) =@_;
  75.     $sockaddr='S n a4 x8';
  76.     chop($hostname=`hostname`);
  77.     $port=(getservbyname($port, 'tcp'))[2]  unless $port =~ /^\d+$/;
  78.     $me=pack($sockaddr,&AF_INET,0,(gethostbyname($hostname))[4]);
  79.     $them=pack($sockaddr,&AF_INET,$port,(gethostbyname($host))[4]);
  80.     socket(S,&PF_INET,&SOCK_STREAM,(getprotobyname('tcp'))[2]) ||
  81.         die "socket: $!";
  82.     bind(S,$me) || return "bind: $!";
  83.     connect(S,$them) || return "connect: $!";
  84.     select(S);
  85.     $| = 1;
  86.     select(stdout);
  87.     return "";
  88. }
  89.  
  90. ### Main
  91.  
  92. {
  93.     $date=`date +%y%m%d:%H%M%S`;
  94.     chop($date);
  95.     ($day,$time)=split(/:/,$date);
  96.     $res=&tcp_connect($server,$port);
  97.     open(OUT,">>$wherelog$day");
  98.     if ($res) {
  99.         print OUT "$time:-1:-1:-1:-1:$res\n";
  100.         exit 1;
  101.     }
  102.     print S "GET $request\n";
  103.     while (<S>) {
  104.         $requests=$1 if ( m|^BusyServers:\ (\S+)|);
  105.         $idle=$1 if ( m|^IdleServers:\ (\S+)|);
  106.         $number=$1 if ( m|sses:\ (\S+)|);
  107.         $cpu=$1 if (m|^CPULoad:\ (\S+)|);
  108.     }
  109.     print OUT "$time:$requests:$idle:$number:$cpu\n";
  110. }
  111.  
  112.  
  113.